home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 February
/
EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso
/
enigma
/
earcd
/
varie
/
ditolatn.lha
/
DITOlatin
/
Install
< prev
next >
Wrap
Text File
|
1996-11-14
|
2KB
|
103 lines
; Very simple installer script for DITO vocabularies
; --------------------------------------------------
(message
"\nDITO\n"
"© Dirk Holtwick, 1996\n\n"
"DITO is a very flexible learning system for "
"languages. Notice that it is SHAREWARE and that "
"you have to pay a fee if you want to use it often.\n\n"
"Please read the README file for further informations.\n\n"
"Enjoy it, Dirk"
)
(set destname
(askdir
(prompt "Where is your vocabulary drawer?")
(help @askdir-help)
(default "DITO:vocs")
)
)
(set ch
(askoptions
(prompt "Wich vocabularies would you like to use?")
(help @askoptions-help)
(choices
"Intensivkurs (Latin-German, 197 entries)"
"Legere (Latin-German, 1093 entries)"
"Seneca (Latin-German, 111 entries)"
)
(default 255)
)
)
(if (bitand ch 1)
(
(makedir
(tackon destname "latinum/Intensivkurs")
(prompt)
)
(copyfiles
(prompt "Copying 'Intensivkurs' files")
(help @copyfiles-help)
(source "latinum/Intensivkurs")
(dest (tackon destname "latinum/Intensivkurs"))
(all)
)
(copyfiles
(prompt "Copying 'Intensivkurs' files")
(help @copyfiles-help)
(source "latinum")
(dest (tackon destname "latinum"))
(pattern "Intensivkurs.voc")
)
)
)
(if (bitand ch 2)
(
(makedir
(tackon destname "latinum/Legere")
(prompt)
)
(copyfiles
(prompt "Copying 'Legere' files")
(help @copyfiles-help)
(source "latinum/Legere")
(dest (tackon destname "latinum/Legere"))
(all)
)
(copyfiles
(prompt "Copying 'Legere' files")
(help @copyfiles-help)
(source "latinum")
(dest (tackon destname "latinum"))
(pattern "Legere.voc")
)
)
)
(if (bitand ch 4)
(
(makedir
(tackon destname "latinum/Seneca")
(prompt)
)
(copyfiles
(prompt "Copying 'Seneca' files")
(help @copyfiles-help)
(source "latinum/Seneca")
(dest (tackon destname "latinum/Seneca"))
(all)
)
(copyfiles
(prompt "Copying 'Seneca' files")
(help @copyfiles-help)
(source "latinum")
(dest (tackon destname "latinum"))
(pattern "Seneca.voc")
)
)
)